projects
/
babl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f50e17
)
Make the initial list size in all databases 512 long.
author
Øyvind Kolås
<pippin@gimp.org>
Sun, 22 Nov 2009 17:44:52 +0000
(17:44 +0000)
committer
Øyvind Kolås
<pippin@gimp.org>
Sun, 22 Nov 2009 17:44:52 +0000
(17:44 +0000)
Like the previous commit.
babl/babl-db.c
patch
|
blob
|
history
diff --git
a/babl/babl-db.c
b/babl/babl-db.c
index 38b059698ee5619c26057a0dfa87c824f31797b7..7825cc0a0fe50f863df7be36232d1a1439903ac4 100644
(file)
--- a/
babl/babl-db.c
+++ b/
babl/babl-db.c
@@
-62,7
+62,7
@@
babl_db_init (void)
db->name_hash = babl_hash_table_init (db_hash_by_name, db_find_by_name);
db->id_hash = babl_hash_table_init (db_hash_by_id, db_find_by_id);
- db->babl_list = babl_list_init
(
);
+ db->babl_list = babl_list_init
_with_size (512
);
db->mutex = babl_mutex_new ();
return db;